home *** CD-ROM | disk | FTP | other *** search
Wrap
XSetup plugin | 2001-01-06 | 1.8 KB | 61 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0" "TYPE"="1" "COUNT"="3" "UIPATH"="Appearance\Desktop\Icons\Tool Tips" "NAME"="Icon Tool Tips #3" "VERSION"="2.03" "LANGUAGE"="VBScript" "TEXT 1"="IE 5.0" "TEXT 2"="IE 5.5" "TEXT 3"="Outlook 2000" "DESCRIPTION 1"="If you have ActiveDesktop or Windows 2000 installed, a small yellow window (aka Tool Tip) for these items will appear on the desktop if you pass them with your mouse." "DESCRIPTION 2"="You can change these tips to anything you want." "AUTHOR"="Xteq Systems" "CONTACTURL"="http://www.xteq.com" "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved" "COMMENT 1"=" " "COMMENT 2"="Thanks to CptSiskoX for his help!" '****************************************************************** '*** !!COPY!! ONLY EDIT LINES BELOW! **** '****************************************************************** sVals=Array("{3DC7A020-0ACD-11CF-A9BB-00AA004AE837}","{871C5380-42A0-1069-A2EA-08002B30309D}","{00020D75-0000-0000-C000-000000000046}") '****************************************************************** '*** Keep an eye on the order (must be the same as "TEXT x") ! **** '****************************************************************** sP="HKLM\Software\Classes\CLSID\" sV="InfoTip" Sub Plugin_Initialize for i=0 to UBound(sVals) Call ReadIt(i+1,sVals(i)) next End Sub Sub ReadIt(UI,VAL) s=RegReadValue(sp & VAL & "\" & sV) Call SetUIElement(UI,s) End Sub Sub Plugin_CheckData(ElementIndex) End Sub Sub Plugin_Apply(ElementIndex,ElementSubIndex) for i=0 to UBound(sVals) Call WriteIt(i+1,sVals(i)) next End Sub Sub WriteIt(UI,VAL) s=GetUIElement(UI) Call RegWriteValue(sp & VAL & "\" & sV,s,1) End Sub Sub Plugin_Terminate End Sub